home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Swimwear Illustrated
/
Swimwear Illustrated.iso
/
mac
/
MAIN8
/
MODLPRO8.DIR
/
00042_Script_42
< prev
next >
Wrap
Text File
|
1996-02-22
|
664b
|
37 lines
on startmovie
global spplace
put 50 into spplace
end startmovie
on getroll
repeat with x = 3 to 21
if rollover(x) then exit repeat
end repeat
if rollover(x) then return x
else return 50
end if
end getroll
on rollme
global spplace
if not soundbusy(1) then
sound stop 1
sound playfile 1, "modlprof"
end if
put getroll() into spplace
if spplace <> 50 then
repeat with group = 3 to 21
SET the VISIBLE OF sprite group+19 to false
end repeat
SET the VISIBLE OF sprite spplace+19 to true
else
repeat with group = 3 to 21
SET the VISIBLE OF sprite group+19 to false
end repeat
end if
UPDATESTAGE
go loop
end rollme